From: Emmanuele Bassi Date: Tue, 6 Dec 2022 22:13:23 +0000 (+0000) Subject: docs: Update installation instructions X-Git-Tag: archive/raspbian/3.24.39-1+rpi1~1^2~65^2~2^2~7^2~14 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=880dd62c093540cb6208e3071501aba89c5bb63d;p=gtk%2B3.0.git docs: Update installation instructions Mention Meson. --- diff --git a/INSTALL.in b/INSTALL.in index 7a1dcec01e..f1c065faa9 100644 --- a/INSTALL.in +++ b/INSTALL.in @@ -3,6 +3,8 @@ Prerequisites GTK+ requires the following packages: + - Autotools or Meson + - The GLib, Pango, GdkPixbuf, ATK and cairo libraries, available at the same location as GTK+. GTK+ @GTK_VERSION@ requires at least GLib @GLIB_REQUIRED_VERSION@, Pango @PANGO_REQUIRED_VERSION@, @@ -19,15 +21,25 @@ GTK+ requires the following packages: - gobject-introspection @INTROSPECTION_REQUIRED_VERSION@ or newer. -Simple install procedure -======================== +Simple install procedure for Meson +================================== + + % tar xf gtk+-@GTK_VERSION@.tar.xz # unpack the sources + % cd gtk+-@GTK_VERSION@ # change to the toplevel directory + % meson setup _build # configure GTK+ + % meson compile -C _build # build GTK+ + [ Become root if necessary ] + % meson install -C _build # install GTK+ + +Simple install procedure for Autotools +====================================== % tar xf gtk+-@GTK_VERSION@.tar.xz # unpack the sources % cd gtk+-@GTK_VERSION@ # change to the toplevel directory - % ./configure # run the `configure' script - % make # build GTK+ + % ./autogen.sh # configure GTK+ + % make # build GTK+ [ Become root if necessary ] - % make install # install GTK+ + % make install # install GTK+ The Details =========== @@ -39,4 +51,4 @@ can be found in the file: Or online at: - http://library.gnome.org/devel/gtk/stable/gtk-building.html + http://developer-old.gnome.org/gtk/3.24/gtk-building.html